home *** CD-ROM | disk | FTP | other *** search
/ Speccy ClassiX 1998 / Speccy ClassiX 98.iso / amiga_system / the_aminet / dev / gcc / ixemulsrc.lha / ixemul-41.4 / string / memmove.c < prev    next >
C/C++ Source or Header  |  1995-05-17  |  132b  |  10 lines

  1. #include <stdlib.h>
  2.  
  3. void *
  4. memmove (void *dst0, const void *src0, size_t length)
  5. {
  6.   bcopy (src0, dst0, length);
  7.   return dst0;
  8. }
  9.  
  10.